home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000386_news@columbia.edu _Mon Jun 19 10:09:29 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id KAA10495
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 19 Jun 2000 10:09:29 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA23365
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 19 Jun 2000 10:09:28 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id JAA28440
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 19 Jun 2000 09:40:49 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Newbies plea for help
  14. Date: 19 Jun 2000 13:40:49 GMT
  15. Organization: Columbia University
  16. Message-ID: <8il7t1$rol$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <6gp35.9023$DH3.25973@news1.eburwd1.vic.optushome.com.au>,
  20. Rob Teasdale <robannie@nobloodyspamoptushome.com.au> wrote:
  21. : I am trying to sort out the amount of information out there on Kermit to
  22. : help me a program that I am working on.  At the moment I am telneting to a
  23. : patent search engine.
  24. :
  25. Is this a public service?  What's the IP address?
  26.  
  27. : On connection the server informs me that the host
  28. : setting is 8 bits - Kermit protocol.  The search engine has its own query
  29. : language and will not allow any other commands not specified.  I can connect
  30. : fine and run all commands.  I cannot understand then why they would use
  31. : Kermit as the protocol. I am presuming that Kermit sits on top of telnet
  32. : and provides enhanced features.
  33. :
  34. Yes: file transfer.
  35.  
  36. : Please feel free to let me know if I am way
  37. : off track.  The component that I am using works fine but I feel that the use
  38. : of Kermit at their end is deliberate.  The thing is I can download the
  39. : patents OK, and the component that I have written is a simple client socket
  40. : on port23 with no added functionality to support Kermit.
  41. It depends on what you mean by "download".  Downloading material over a
  42. Telnet connection without a file transfer protocol is done by client-end
  43. methods like screen capture or session logging.  This is not quite the same
  44. thing as file transfer.  Even though Telnet might provide an error-free
  45. connection, you still have issues of file delimitation, record format, and
  46. character set, which are addressed by real file-transfer protocols such as
  47. Kermit (and FTP, Zmodem, etc).
  48.  
  49. In particular, if you needed to download a batch of files (i.e. more than
  50. one at a time), this could be quite difficult without a file-transfer
  51. protocol.  Uploading can be problematic too, for the same reasons.
  52.  
  53. - Frank